home *** CD-ROM | disk | FTP | other *** search
/ Tiger Disk 13 / Tiger_Disk_013_19xx_Tiger-Crew-Disk_de_Side_A.d64 / transfer v3.seq < prev    next >
Text File  |  2023-02-26  |  834b  |  57 lines

  1.  
  2. ;transfer v3 (w) 12.8.1994 by Madrom
  3.  
  4.          *= $7000
  5.  
  6. trvon    = $095b
  7. trbis    = $1000
  8. trnach   = $0801
  9.  
  10.          lda #<trnach
  11.          ldx #>trnach
  12.          sta $58
  13.          stx $59
  14.  
  15.          lda #<trvon
  16.          ldx #>trvon
  17.          sta $5f
  18.          stx $60
  19.  
  20.          lda #<trbis
  21.          ldx #>trbis
  22.          sta $5a
  23.          stx $5b
  24.  
  25.          sec
  26.          lda $5a
  27.          sbc $5f
  28.          sta $22
  29.          lda $5b
  30.          sbc $60
  31.          sta $23
  32.  
  33.          sei
  34.          dec 1
  35. tr1      ldy #0
  36.          ldx $23
  37.          beq tr3
  38. tr2      lda ($5f),y
  39.          sta ($58),y
  40.          iny
  41.          bne tr2
  42.          inc $60
  43.          inc $59
  44.          dex
  45.          bne tr2
  46. tr3      ldx $22
  47.          beq tr5
  48. tr4      lda ($5f),y
  49.          sta ($58),y
  50.          iny
  51.          dex
  52.          bne tr4
  53. tr5      inc 1
  54.          cli
  55.          rts
  56.  
  57.